* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}

.navbar {
    overflow: hidden;
    z-index: 10;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 82;
    background-color: #8D1308;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}

.logo-container {
    padding: 10px;
    margin-left: 10px;
    display: block;
    float: left;
    font-size: 26px;
    color: white;
    text-decoration: none;
}

    .logo-container .logo {
        height: 50px;
    }

    .logo-container .logo-text {
        display: inline-block;
        margin-left: 5px;
    }

.navbar .menu {
    clear: both;
    text-align: center;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.navbar ul {
    margin: auto;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.navbar li a {
    display: inline-block;
    color: white;
    text-align: center;
    font-size: 24px;
    padding: 10px 5px;
    text-decoration: none;
}

    .navbar li a:hover:not(i) {
        border-bottom: 2px solid white;
    }

.navbar .menu-btn:hover {
    background-color: #f4f4f4;
}


.navbar .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

    .navbar .menu-icon .navicon {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }

        .navbar .menu-icon .navicon:before,
        .navbar .menu-icon .navicon:after {
            background: #333;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            transition: all .2s ease-out;
            width: 100%;
        }

        .navbar .menu-icon .navicon:before {
            top: 5px;
        }

        .navbar .menu-icon .navicon:after {
            top: -5px;
        }

/* menu btn */

.navbar .menu-btn {
    display: none;
}

    .navbar .menu-btn:checked ~ .menu {
        max-height: 240px;
    }

    .navbar .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

        .navbar .menu-btn:checked ~ .menu-icon .navicon:before {
            transform: rotate(-45deg);
        }

        .navbar .menu-btn:checked ~ .menu-icon .navicon:after {
            transform: rotate(45deg);
        }

    .navbar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .navbar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
    }

@media (min-width: 800px) {
.navbar ul{
    margin-right: 22px;
}

    .navbar li {
        float: left;
    }

        .navbar li a {
            margin: 22px;
            padding: 5px;
        }

    .navbar .menu {
        float: right;
        clear: none;
        max-height: none;
    }

    .navbar .menu-icon {
        display: none;
    }
}
